time.Time.wall (field)

28 uses

	time (current package)
		format.go#L501: 	if t.wall&hasMonotonic != 0 {
		time.go#L139: 	wall uint64
		time.go#L164: 	return int32(t.wall & nsecMask)
		time.go#L169: 	if t.wall&hasMonotonic != 0 {
		time.go#L170: 		return wallToInternal + int64(t.wall<<1>>(nsecShift+1))
		time.go#L180: 	if t.wall&hasMonotonic != 0 {
		time.go#L181: 		sec := int64(t.wall << 1 >> (nsecShift + 1))
		time.go#L184: 			t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
		time.go#L214: 	if t.wall&hasMonotonic != 0 {
		time.go#L216: 		t.wall &= nsecMask
		time.go#L225: 	if t.wall&hasMonotonic == 0 {
		time.go#L230: 		t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
		time.go#L241: 	if t.wall&hasMonotonic == 0 {
		time.go#L249: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L259: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L273: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L829: 	t.wall = t.wall&^nsecMask | uint64(nsec) // update nsec
		time.go#L831: 	if t.wall&hasMonotonic != 0 {
		time.go#L848: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L876: 	if t.wall&hasMonotonic != 0 {
		time.go#L889: 	if t.wall&hasMonotonic != 0 {
		time.go#L1252: 	t.wall = uint64(nsec)